From: Stefan Monnier Date: Wed, 26 Aug 2009 14:47:23 +0000 (+0000) Subject: (byte-compile-lapcode): Fix up last change. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~324^2~10881 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=923e90c6fef53f6b05bde1aaafe11d39336082e8;p=emacs.git (byte-compile-lapcode): Fix up last change. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8b30443e837..acca989388c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2009-08-26 Stefan Monnier + + * emacs-lisp/bytecomp.el (byte-compile-lapcode): Fix up last change. + 2009-08-26 Dan Nicolaescu * vc-git.el (vc-git-register): Use "git add" for directories. diff --git a/lisp/emacs-lisp/bytecomp.el b/lisp/emacs-lisp/bytecomp.el index f1561c0b279..01d1e270f36 100644 --- a/lisp/emacs-lisp/bytecomp.el +++ b/lisp/emacs-lisp/bytecomp.el @@ -856,7 +856,7 @@ otherwise pop it") (setcar (cdr bytes) (logand pc 255)) (setcar bytes (lsh pc -8)) ;; FIXME: Replace this by some workaround. - (if (> (car bytes) 255) (error "Bytecode overflow")))))) + (if (> (car bytes) 255) (error "Bytecode overflow")))) (setq patchlist (cdr patchlist)))) (apply 'unibyte-string (nreverse bytes))))